home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / string / strdup.c < prev    next >
C/C++ Source or Header  |  1991-09-28  |  2KB  |  56 lines

  1. /*
  2.  * Copyright (c) 1988 The Regents of the University of California.
  3.  * All rights reserved.
  4.  *
  5.  * Redistribution and use in source and binary forms are permitted
  6.  * provided that the above copyright notice and this paragraph are
  7.  * duplicated in all such forms and that any documentation,
  8.  * advertising materials, and other materials related to such
  9.  * distribution and use acknowledge that the software was developed
  10.  * by the University of California, Berkeley.  The name of the
  11.  * University may not be used to endorse or promote products derived
  12.  * from this software without specific prior written permission.
  13.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14.  * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15.  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16.  */
  17.  
  18. #ifndef lint
  19. static char rcsid[] = "$Header: /sprite/src/lib/c/string/RCS/strdup.c,v 1.3 91/08/05 16:50:17 kupfer Exp $ SPRITE (Berkeley)";
  20. #endif /* not lint */
  21.  
  22. #include <bstring.h>
  23. #include <sys/types.h>
  24. #include <stdio.h>
  25. #include <string.h>
  26.  
  27. /*
  28.  *----------------------------------------------------------------------
  29.  *
  30.  * strdup --
  31.  *
  32.  *      Malloc and copy a string.
  33.  *
  34.  * Results:
  35.  *      Returns pointer to the copy of the string.
  36.  *
  37.  * Side effects:
  38.  *      Mallocs space for the new string.
  39.  *
  40.  *----------------------------------------------------------------------
  41.  */
  42.  
  43. char *
  44. strdup(str)
  45.     char *str;
  46. {
  47.     int len;
  48.     char *copy, *malloc();
  49.  
  50.     len = strlen(str) + 1;
  51.     if (!(copy = malloc((u_int)len)))
  52.         return((char *)NULL);
  53.     bcopy(str, copy, len);
  54.     return(copy);
  55. }
  56.